home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 5-023 bas2com basic compiler / 1.img / EASY.BAT < prev    next >
DOS Batch File  |  1982-05-07  |  546b  |  17 lines

  1. REM  EASY.BAT completely automates the compile,
  2. REM  link and run steps for a BASIC program. 
  3. REM  You will not have to change diskettes.
  4. REM  This batch file requires the following:
  5. REM  .  a two-drive system
  6. REM  .  BASRUN-Linker diskette in drive A:
  7. REM     with copies of BASRUN.EXE, EASY.BAT,
  8. REM     and BASCOM.COM on the diskette
  9. REM  .  work diskette in drive B:
  10. REM  To run this batch file respond to the DOS prompt with:
  11. REM         EASY progname parms
  12. PAUSE . . . begin the compilation
  13. B:
  14. A:BASCOM %1%2;
  15. A:LINK %1;
  16. %1
  17.